-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
73 lines (58 loc) · 1.75 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import java.util.Scanner;
class Node {
int data;
Node next;
Node(int data) {
this.data = data;
this.next = null;
}
}
public class RemoveNthNode {
public static void printList(Node head) {
Node temp = head;
while (temp != null) {
System.out.print(temp.data + " -> ");
temp = temp.next;
}
System.out.println("NULL");
}
public static Node removeNthFromEnd(Node head, int n) {
Node dummy = new Node(0);
dummy.next = head;
Node fast = dummy, slow = dummy;
for (int i = 0; i <= n; i++) {
if (fast != null) fast = fast.next;
}
while (fast != null) {
fast = fast.next;
slow = slow.next;
}
slow.next = slow.next.next;
return dummy.next;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the number of nodes: ");
int n = scanner.nextInt();
Node head = null, tail = null;
for (int i = 0; i < n; i++) {
System.out.print("Enter value for node " + (i + 1) + ": ");
int value = scanner.nextInt();
Node newNode = new Node(value);
if (head == null) {
head = tail = newNode;
} else {
tail.next = newNode;
tail = newNode;
}
}
System.out.print("Enter the position from the end to remove: ");
int pos = scanner.nextInt();
System.out.println("Original List: ");
printList(head);
head = removeNthFromEnd(head, pos);
System.out.println("Updated List: ");
printList(head);
scanner.close();
}
}